home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 26 / Mac Magazin and MacEasy Magazine CD - Issue 26.iso / Wissenschaft & Technik / TimGA 1.1 ƒ / Graphs / (2) Bigger graphs / 17 - Fibonacci Tree < prev    next >
Text File  |  1995-08-18  |  424b  |  53 lines

  1.  
  2. |V|:    41        // Number of nodes
  3. |E|:    40        // Number of edges
  4.  
  5.     13    8        // Edges are represented as pairs of node numbers...
  6.     13    18
  7.  
  8.     8    5
  9.     8    11
  10.     18    16
  11.     18    20
  12.     
  13.     5    3
  14.     5    7
  15.     11    10
  16.     11    12
  17.     16    15
  18.     16    17
  19.     20    19
  20.     20    41
  21.     
  22.     3    2
  23.     3    4
  24.     7    6
  25.     7    28
  26.     10    9
  27.     10    31
  28.     12    32
  29.     12    33
  30.     15    14
  31.     15    36
  32.     17    37
  33.     17    38
  34.     19    39
  35.     19    40
  36.     
  37.     2    1
  38.     2    23
  39.     4    24
  40.     4    25
  41.     6    26
  42.     6    27
  43.     9    29
  44.     9    30
  45.     14    34
  46.     14    35
  47.     
  48.     1    21
  49.     1    22
  50.  
  51. ---
  52. This graph is the Fibonacci tree of order 7.
  53.